(indent-sexp): Even if outer-loop-done is t, still move down one line.
authorRichard M. Stallman <rms@gnu.org>
Sat, 29 May 1993 05:45:47 +0000 (05:45 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sat, 29 May 1993 05:45:47 +0000 (05:45 +0000)
lisp/emacs-lisp/lisp-mode.el

index 4a75b4c409746a67c0e07ec6166948b26d71f199..17acda41e22c78783a3b70d5ddbfcc9c5dd5c88a 100644 (file)
@@ -560,7 +560,7 @@ ENDPOS is encountered."
        (or outer-loop-done
            (setq outer-loop-done (<= next-depth 0)))
        (if outer-loop-done
-           nil
+           (forward-line 1)
          (while (> last-depth next-depth)
            (setq indent-stack (cdr indent-stack)
                  last-depth (1- last-depth)))